You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM python:3.6-alpine
|
|
WORKDIR /dist
|
|
RUN apk add --update build-base libffi-dev openssl-dev
|
|
COPY src/requirements.txt /dist/requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt && mkdir db
|
|
COPY src .
|
|
|
|
CMD ["python", "-u", "app.py"]
|
|
EXPOSE 8777
|