Initial commit

This commit is contained in:
2023-09-12 15:31:09 +10:00
commit dc811ddaab
8 changed files with 824 additions and 0 deletions

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