Skip to content

Commit

Permalink
Merge pull request toniebox-reverse-engineering#37 from toniebox-reve…
Browse files Browse the repository at this point in the history
…rse-engineering/develop

Develop
  • Loading branch information
SciLor authored Jul 23, 2023
2 parents 1e4f1ab + 1675c71 commit 1017b5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
upload_url: ${{ steps.set_data1.outputs.upload_url }}
appendix: ${{ steps.set_data2.outputs.appendix }}
steps:
- name: Install build dependencies
run: sudo apt-get install -y --no-install-recommends gcc protobuf-c-compiler build-essential
- name: Get current datetime
id: get-datetime
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:latest as buildenv

RUN apt-get update \
&& apt-get install -y --no-install-recommends gcc protobuf-c-compiler build-essential faketime openssl \
&& apt-get install -y --no-install-recommends gcc protobuf-c-compiler build-essential \
&& rm -rf /var/lib/apt/lists/*

COPY . /buildenv
Expand All @@ -11,6 +11,10 @@ RUN make preinstall
FROM ubuntu:latest
EXPOSE 80 443

RUN apt-get update \
&& apt-get install -y --no-install-recommends faketime openssl \
&& rm -rf /var/lib/apt/lists/*

RUN mkdir -p /teddycloud/certs/server \
&& mkdir -p /teddycloud/www/CONTENT \
&& mkdir /teddycloud/config
Expand Down

0 comments on commit 1017b5e

Please sign in to comment.