added Linux apps
Browse files- Dockerfile +8 -0
Dockerfile
CHANGED
@@ -5,6 +5,14 @@ ENV PYTHONDONTWRITEBYTECODE 1
|
|
5 |
ENV PYTHONUNBUFFERED 1
|
6 |
# ^ ensures that the output from the Python app is sent straight to the terminal without being buffered -> real time monitoring
|
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
ENV ENVIRONMENT=dev
|
9 |
|
10 |
COPY ./app /app
|
|
|
5 |
ENV PYTHONUNBUFFERED 1
|
6 |
# ^ ensures that the output from the Python app is sent straight to the terminal without being buffered -> real time monitoring
|
7 |
|
8 |
+
RUN apt-get update && apt-get install -y \
|
9 |
+
unzip \
|
10 |
+
curl \
|
11 |
+
wget \
|
12 |
+
git git-lfs \
|
13 |
+
bash \
|
14 |
+
&& rm -rf /var/lib/apt/lists/*2
|
15 |
+
|
16 |
ENV ENVIRONMENT=dev
|
17 |
|
18 |
COPY ./app /app
|