This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/Dockerfile

9 lines
209 B
Docker
Raw Normal View History

FROM python:alpine
2019-11-25 21:52:22 +00:00
COPY pynyaata /app/pynyaata
COPY requirements.txt /app
2020-04-09 19:06:22 +00:00
COPY *.py /app/
2020-04-09 08:27:42 +00:00
WORKDIR /app
RUN apk add build-base && pip install -r requirements.txt && apk del build-base
CMD ["python", "run.py"]