[CI] copy every files

CircleCi does not allow to mount directories
pull/28/head^2
Pierre-Louis Guhur 4 years ago committed by guhur
parent 9f0ee31d43
commit 35bf334601

@ -3,6 +3,8 @@ version: '3'
services:
db:
image: postgres
environment:
POSTGRES_HOST_AUTH_METHOD: trust
web:
build:
context: .

@ -2,5 +2,5 @@ FROM python:3.8
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code/
COPY . /code/
RUN pip install -r requirements.txt

@ -2,7 +2,7 @@ FROM python:3.8
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code/
COPY . /code/
RUN pip install -U pip \
&& pip install -r requirements.txt \
&& pip install dash

Loading…
Cancel
Save