Files
gw2-tools/gw2-tools-frontend/docker/Dockerfile
2024-01-22 01:26:17 +01:00

7 lines
192 B
Docker

FROM python:3.12.1-alpine3.19
ADD wrapper /
ADD python/requirements.txt requirements.txt
RUN pip install -r requirements.txt
ADD resources/ /python/resources
ADD python /python
CMD ["/run.sh"]