feat: Add dockerfile
All checks were successful
Build Docker / Build Docker (push) Successful in 46s

This commit is contained in:
Nathan Woodburn 2023-12-11 15:29:28 +11:00
parent eb4e2afc5f
commit 5b6b42cf15
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
WORKDIR /app
COPY requirements.txt /app
RUN --mount=type=cache,target=/root/.cache/pip \
pip3 install -r requirements.txt
COPY . /app
# Set the timezone during the container build
RUN apk --update add tzdata && \
cp /usr/share/zoneinfo/Australia/Sydney /etc/localtime && \
echo "Australia/Sydney" > /etc/timezone
EXPOSE 5000
ENTRYPOINT ["python3"]
CMD ["server.py"]
FROM builder as dev-envs