remove unused files and dependencies
This commit is contained in:
@ -1,31 +0,0 @@
|
||||
FROM python:3.7
|
||||
|
||||
MAINTAINER SamR1@users.noreply.github.com
|
||||
|
||||
# set working directory
|
||||
RUN mkdir -p /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# add requirements
|
||||
COPY ./pyproject.toml /usr/src/app/pyproject.toml
|
||||
COPY ./poetry.lock /usr/src/app/poetry.lock
|
||||
|
||||
# add environment variables
|
||||
ARG UI_URL
|
||||
ARG EMAIL_URL
|
||||
ARG SENDER_EMAIL
|
||||
ENV UI_URL $UI_URL
|
||||
ENV EMAIL_URL $EMAIL_URL
|
||||
ENV SENDER_EMAIL $SENDER_EMAIL
|
||||
|
||||
# install requirements
|
||||
RUN pip install --upgrade pip
|
||||
RUN pip install poetry
|
||||
RUN poetry config virtualenvs.create false
|
||||
RUN poetry install --no-interaction --quiet
|
||||
|
||||
# add app --no-interaction
|
||||
COPY . /usr/src/app
|
||||
|
||||
# run server
|
||||
CMD flask run --with-threads -h 0.0.0.0
|
@ -1,5 +0,0 @@
|
||||
FROM postgres:11.2
|
||||
|
||||
MAINTAINER SamR1@users.noreply.github.com
|
||||
|
||||
COPY create.sql /docker-entrypoint-initdb.d
|
Reference in New Issue
Block a user