mirror of
https://example.com
synced 2024-11-22 20:46:39 +09:00
docker: fully qualify image tags in Dockerfile (i.e. add docker.io in front of tags)
This commit is contained in:
parent
01a1a58fa3
commit
7ce992956a
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
## Install dev and compilation dependencies, build files
|
## Install dev and compilation dependencies, build files
|
||||||
FROM node:21-slim as build
|
FROM docker.io/node:21-slim as build
|
||||||
WORKDIR /firefish
|
WORKDIR /firefish
|
||||||
|
|
||||||
# Install compilation dependencies
|
# Install compilation dependencies
|
||||||
|
@ -56,7 +56,7 @@ RUN env NODE_ENV=production sh -c "pnpm run --filter '!native-utils' build && pn
|
||||||
RUN pnpm install --prod --frozen-lockfile
|
RUN pnpm install --prod --frozen-lockfile
|
||||||
|
|
||||||
## Runtime container
|
## Runtime container
|
||||||
FROM node:21-slim
|
FROM docker.io/node:21-slim
|
||||||
WORKDIR /firefish
|
WORKDIR /firefish
|
||||||
|
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies
|
||||||
|
|
Loading…
Reference in a new issue