Add container security section

This commit is contained in:
sid palas
2023-02-06 11:09:40 -05:00
parent c2c97e76c3
commit 9788b7eefa
12 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,25 @@
# Pin specific version for stability
# Use alpine for reduced image size
FROM node:19.4-alpine as dev
# Specify working directory other than /
WORKDIR /usr/src/app
# Copy only files required to install
# dependencies (better layer caching)
COPY package*.json ./
# Install only production dependencies
# Use cache mount to speed up install of existing dependencies
RUN --mount=type=cache,target=/usr/src/app/.npm \
npm set cache /usr/src/app/.npm && \
npm install
# Copy remaining source code AFTER installing dependencies.
# Again, copy only the necessary files
COPY . .
# Indicate expected port
EXPOSE 3000
CMD [ "npm", "run", "dev" ]

View File

@ -0,0 +1,12 @@
Remote debugging setup (vscode `launch.json`):
```json
{
"name": "Docker: Attach to Node",
"type": "node",
"request": "attach",
"localRoot": "${workspaceFolder}/docker-course/devops-directive-docker-course/05-example-web-application/api-node",
"remoteRoot": "/usr/src/app",
"port": 9229
},
```