Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Aug 19, 2024
1 parent 2bc1b88 commit 70763d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ RUN echo "Upgrading pip..." \
# =============================================================================
# Copy package.json and package-lock.json to the container and install dependencies
COPY package*.json ./
RUN npm ci --frozen-lockfile
RUN npm install

# Copy Application Code
# =============================================================================
Expand All @@ -74,8 +74,8 @@ COPY . .

# Copy Entrypoint and Start Scripts
# =============================================================================
COPY /bin/entrypoint.sh /usr/local/bin/entrypoint.sh
COPY /bin/start.sh /usr/local/bin/start.sh
COPY bin/entrypoint.sh /usr/local/bin/entrypoint.sh
COPY bin/start.sh /usr/local/bin/start.sh
RUN chmod +x /usr/local/bin/entrypoint.sh /usr/local/bin/start.sh

# Security Best Practices
Expand Down

0 comments on commit 70763d7

Please sign in to comment.