enzostvs HF staff commited on
Commit
98845de
β€’
1 Parent(s): 2f2c945

update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -5,13 +5,12 @@ USER root
5
 
6
  ENV PUPPETEER_SKIP_DOWNLOAD=True
7
  # Set the working directory in the container
8
- WORKDIR /usr/src/app
9
 
10
  RUN apt-get update
11
  RUN apt-get install chromium -y
12
 
13
  USER 1000
14
-
15
  # Copy package.json and package-lock.json to the container
16
  COPY --chown=1000 package.json package-lock.json ./
17
 
 
5
 
6
  ENV PUPPETEER_SKIP_DOWNLOAD=True
7
  # Set the working directory in the container
 
8
 
9
  RUN apt-get update
10
  RUN apt-get install chromium -y
11
 
12
  USER 1000
13
+ WORKDIR /usr/src/app
14
  # Copy package.json and package-lock.json to the container
15
  COPY --chown=1000 package.json package-lock.json ./
16