1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
wagtail-website-2018-spike/Dockerfile

21 lines
340 B
Docker

FROM theorangeone/docker-pyenv-nvm
ENV LC_ALL C.UTF-8
ENV LANG C.UTF-8
RUN mkdir /app
RUN apt-get update && apt-get install python3-pip git -y && pip3 install pipenv
WORKDIR /app
COPY Pipfile Pipfile
COPY Pipfile.lock Pipfile.lock
RUN pipenv install --deploy --system
COPY . /app
RUN ./manage.py collectstatic --noinput
EXPOSE 8000