Update Dockerfile
Browse files- 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 && \
|