socialnerds/accounts
socialnerds
/
accounts
Archived
1
0
Fork 0
This repository has been archived on 2022-04-16. You can view files and clone it, but cannot push or open issues or pull requests.
accounts/Dockerfile

16 lines
232 B
Docker

FROM python:3.6
WORKDIR /usr/src/app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY app.conf .
COPY views ./views
COPY static ./static
EXPOSE 8000/tcp
CMD [ "python", "./app.py" ]