mirror of
https://github.com/simple-login/app.git
synced 2024-11-02 20:01:01 +01:00
32 lines
831 B
Docker
32 lines
831 B
Docker
# Install npm packages
|
|
FROM node:10.17.0-alpine AS npm
|
|
WORKDIR /code
|
|
COPY ./static/package*.json /code/static/
|
|
RUN cd /code/static && npm install
|
|
|
|
# Main image
|
|
FROM python:3.7
|
|
|
|
# install poetry, "pip3 install poetry==1.1.5" doesn't work
|
|
# poetry will be available at /root/.poetry/bin/poetry
|
|
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
|
|
|
|
WORKDIR /code
|
|
|
|
# install dependencies
|
|
COPY poetry.lock pyproject.toml ./
|
|
|
|
RUN /root/.poetry/bin/poetry config virtualenvs.create false \
|
|
&& /root/.poetry/bin/poetry install --no-root
|
|
|
|
# copy npm packages
|
|
COPY --from=npm /code /code
|
|
|
|
# copy everything else into /code
|
|
COPY . .
|
|
|
|
EXPOSE 7777
|
|
|
|
#gunicorn wsgi:app -b 0.0.0.0:7777 -w 2 --timeout 15 --log-level DEBUG
|
|
CMD ["gunicorn","wsgi:app","-b","0.0.0.0:7777","-w","2","--timeout","15"]
|