1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-22 08:53:23 -05:00
workstand/Dockerfile
2016-12-30 23:41:25 -06:00

9 lines
204 B
Docker

FROM python:3.5
RUN mkdir /code
WORKDIR /code
RUN mkdir requirements
ADD ./bikeshop_project /code
COPY ./requirements /code/requirements
RUN pip install -r ./requirements/development.txt
EXPOSE 8000:8000