mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-03 16:03:12 +00:00
15 lines
284 B
Docker
15 lines
284 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10-alpine
|
|
|
|
EXPOSE 8080
|
|
RUN apk add --no-cache postgresql-client build-base
|
|
WORKDIR /data
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN mkdir /storage
|
|
COPY ./server .
|
|
RUN chmod +x ./run.sh
|
|
|
|
CMD ["./run.sh"]
|