Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -4,10 +4,12 @@ RUN useradd -m -u 1000 user
|
|
| 4 |
WORKDIR /usr/src/app
|
| 5 |
|
| 6 |
# Copy the files
|
|
|
|
| 7 |
COPY app.py .
|
| 8 |
COPY lambdas.py .
|
| 9 |
COPY requirements.txt .
|
| 10 |
COPY descriptions.py .
|
|
|
|
| 11 |
# Installations
|
| 12 |
RUN apt-get update && apt-get install libzbar0 -y && pip install pyzbar
|
| 13 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
|
| 4 |
WORKDIR /usr/src/app
|
| 5 |
|
| 6 |
# Copy the files
|
| 7 |
+
RUN echo Copying files
|
| 8 |
COPY app.py .
|
| 9 |
COPY lambdas.py .
|
| 10 |
COPY requirements.txt .
|
| 11 |
COPY descriptions.py .
|
| 12 |
+
|
| 13 |
# Installations
|
| 14 |
RUN apt-get update && apt-get install libzbar0 -y && pip install pyzbar
|
| 15 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|