mirror of
https://github.com/Sheldan/gw2-tools.git
synced 2026-01-23 12:04:59 +00:00
7 lines
192 B
Docker
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"] |