Skip to content

Commit

Permalink
chore: use FQIN in Dockerfile
Browse files Browse the repository at this point in the history
see: #9841
Signed-off-by: Rifa Achrinza <[email protected]>
  • Loading branch information
achrinza committed Aug 13, 2023
1 parent 553cfb1 commit c73ce70
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/site/Application-generator.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Here are the first two lines of the

```
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:10-slim
FROM docker.io/library/node:18-slim
```

As the comment suggests, the Docker image name is only a default, and you are
Expand Down
2 changes: 1 addition & 1 deletion examples/access-control-migration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-tenancy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/references-many/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/rest-crud/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/socketio/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/todo-jwt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/todo-list/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion examples/todo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/generators/app/templates/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Check out https://hub.docker.com/_/node to select a new base image
FROM node:18-slim
FROM docker.io/library/node:18-slim

# Set to a non-root built-in user `node`
USER node
Expand Down

0 comments on commit c73ce70

Please sign in to comment.