mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-19 23:10:36 +00:00
16 lines
328 B
Docker
16 lines
328 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10-alpine
|
|
|
|
EXPOSE 8080
|
|
# RUN apk add --no-cache gcc musl-dev linux-headers
|
|
RUN apk add --no-cache postgresql-client
|
|
WORKDIR /data
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN mkdir /storage
|
|
COPY ./highscore .
|
|
RUN chmod +x ./run.sh
|
|
|
|
CMD ["./run.sh"]
|