Michel Roux
6e858809bd
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
209 B
Docker
9 lines
209 B
Docker
FROM python:alpine
|
|
|
|
COPY pynyaata /app/pynyaata
|
|
COPY requirements.txt /app
|
|
COPY *.py /app/
|
|
WORKDIR /app
|
|
RUN apk add build-base && pip install -r requirements.txt && apk del build-base
|
|
CMD ["python", "run.py"]
|