We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e33200a commit 4f38496Copy full SHA for 4f38496
.dockerignore
@@ -1,2 +1,4 @@
1
Dockerfile
2
.gitignore
3
+node_modules
4
+venv
Dockerfile
@@ -21,7 +21,7 @@ MAINTAINER Computer Science House <[email protected]>
21
22
RUN mkdir /opt/conditional
23
24
-ADD requirements.txt /opt/conditional
+COPY requirements.txt /opt/conditional
25
26
WORKDIR /opt/conditional
27
@@ -34,7 +34,8 @@ ARG PORT=8080
34
ENV PORT=${PORT}
35
EXPOSE ${PORT}
36
37
-COPY . /opt/conditional
+COPY conditional /opt/conditional/conditional
38
+COPY *.py package.json /opt/conditional
39
COPY --from=build-frontend /opt/conditional/conditional/static /opt/conditional/conditional/static
40
41
RUN ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
0 commit comments