mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-28 13:53:12 +00:00
14 lines
305 B
Docker
14 lines
305 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10-alpine
|
|
|
|
EXPOSE 8080
|
|
RUN apk add --no-cache gcc musl-dev linux-headers
|
|
WORKDIR /data
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN mkdir /storage
|
|
COPY /highscore/ .
|
|
|
|
CMD ["gunicorn", "--bind", "highscore:8080", "server:app"]
|