smgc commited on
Commit
b51d461
1 Parent(s): 734da0f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -17,6 +17,10 @@ WORKDIR /project
17
 
18
  # retrieve packages from build stage
19
  ENV PYTHONPATH=/project/pkgs
 
 
 
 
20
  COPY --from=builder /project/__pypackages__/3.10/lib /project/pkgs
21
  COPY --from=builder /project/app /project/app
22
  COPY entrypoint.sh /
 
17
 
18
  # retrieve packages from build stage
19
  ENV PYTHONPATH=/project/pkgs
20
+
21
+ RUN pip install wget
22
+ RUN mkdir -p ./sync && chmod 777 -R ./sync
23
+
24
  COPY --from=builder /project/__pypackages__/3.10/lib /project/pkgs
25
  COPY --from=builder /project/app /project/app
26
  COPY entrypoint.sh /