Modify copying files in Dockerfile to rely more on volume

Move entrypoint
This commit is contained in:
Dustin Pianalto
2019-12-25 18:19:05 -09:00
parent eb01d32071
commit 5c46df0b2a
3 changed files with 22 additions and 11 deletions
+8 -11
View File
@@ -30,13 +30,14 @@ WORKDIR /code
RUN apk update && apk add nginx && apk add supervisor
COPY requirements/base.txt .
COPY requirements/production.txt .
RUN mkdir requirements
RUN pip install -r production.txt
COPY requirements/base.txt requirements/base.txt
COPY requirements/production.txt requirements/production.txt
RUN pip install -r requirements/production.txt
COPY requirements/web.txt .
RUN pip install -r web.txt
COPY requirements/web.txt requirements/web.txt
RUN pip install -r requirements/web.txt
RUN rm -f /etc/nginx/sites-enabled/default
RUN rm -f /etc/nginx/conf.d/default.conf
@@ -53,12 +54,6 @@ RUN rm -rf /tmp/*
RUN mkdir -p /tmp/logs/nginx
RUN mkdir -p /tmp/logs/geeksbot
RUN mkdir -p /code/geeksbot_web
COPY ./* /code/
WORKDIR /code/geeksbot_web
# RUN sed -i 's/\r$//g' ./entrypoint
# RUN chmod +x ./entrypoint
# PostgreSQL DB Connection Info
ENV POSTGRES_HOST geeksbot-db.c3omjx35ryzn.us-east-1.rds.amazonaws.com
@@ -87,4 +82,6 @@ ENV WEB_CONCURRENCY 4
EXPOSE 80 8000 443
COPY entrypoint .
ENTRYPOINT [ "./entrypoint" ]