order
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -50,6 +50,9 @@ RUN npm install npm@latest -g && \
|
|
50 |
npm install n -g && \
|
51 |
n latest
|
52 |
|
|
|
|
|
|
|
53 |
# Install unsilence
|
54 |
RUN pipx ensurepath && \
|
55 |
pipx install unsilence
|
@@ -57,8 +60,7 @@ RUN pipx ensurepath && \
|
|
57 |
# Copy the application code
|
58 |
COPY --chown=admin . /srv
|
59 |
|
60 |
-
|
61 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
62 |
|
63 |
|
64 |
# Command to run the application
|
|
|
50 |
npm install n -g && \
|
51 |
n latest
|
52 |
|
53 |
+
# Install Python dependencies
|
54 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
55 |
+
|
56 |
# Install unsilence
|
57 |
RUN pipx ensurepath && \
|
58 |
pipx install unsilence
|
|
|
60 |
# Copy the application code
|
61 |
COPY --chown=admin . /srv
|
62 |
|
63 |
+
|
|
|
64 |
|
65 |
|
66 |
# Command to run the application
|