Add a docker file. Runs enough to produce some output but not really tested.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3753 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2022-01-11 23:17:18 +00:00
parent 53aac8d23a
commit d51eb64c8e
2 changed files with 26 additions and 0 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
.svn
db.sqlite
out/**/*.o
out/**/*.d

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM debian:bullseye AS build
RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
libsodium-dev \
libssl-dev
COPY . /app
RUN make -C /app -j $(nproc) release
FROM debian:bullseye
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libsodium23 \
libssl1.1
COPY --from=build /app/out/release/tildefriends /app/out/release/tildefriends
COPY --from=build /app/apps /app/apps
COPY --from=build /app/core /app/core
WORKDIR /app
EXPOSE 12345
CMD ["/app/out/release/tildefriends"]