ar08 commited on
Commit
dc750f2
·
verified ·
1 Parent(s): b40458f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -7,6 +7,11 @@ ENV PYTHONUNBUFFERED 1
7
  ENV DEBIAN_FRONTEND=noninteractive
8
  ENV TERM=xterm-256color
9
 
 
 
 
 
 
10
  # Update and install necessary packages
11
  RUN apt-get update && \
12
  apt-get install -y python3 python3-pip curl wget gnupg2 lsb-release nano && \
 
7
  ENV DEBIAN_FRONTEND=noninteractive
8
  ENV TERM=xterm-256color
9
 
10
+ # Set working directory
11
+ WORKDIR /app
12
+
13
+ # Copy the local directory's contents into the container at /app
14
+ COPY ./ /app/
15
  # Update and install necessary packages
16
  RUN apt-get update && \
17
  apt-get install -y python3 python3-pip curl wget gnupg2 lsb-release nano && \