Skip to content

Commit 83f7939

Browse files
committed
Fix deployment
1 parent f3b0a66 commit 83f7939

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

deploy/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
FROM ubuntu:latest
22

33
RUN apt-get update && apt-get install -yq python3 python3-pip vim curl gettext
4-
COPY . /root/aic_site
4+
RUN mkdir /root/aic_site
5+
COPY requirements /root/aic_site/requirements
56
WORKDIR /root/aic_site/requirements
67
RUN pip3 install --upgrade pip
7-
RUN pip3 install -r production.txt
8+
RUN pip3 install -r production.txt
9+
COPY . /root/aic_site

0 commit comments

Comments
 (0)