build(Dockerfile): use fully qualified image name
Improves compatibility with podman, etc. Resolves #275
This commit is contained in:
parent
af8f48daef
commit
aee4da1c9b
@ -1,4 +1,4 @@
|
||||
FROM node:18.13.0 as build
|
||||
FROM docker.io/library/node:18.13.0 as build
|
||||
RUN mkdir /peer-server
|
||||
WORKDIR /peer-server
|
||||
COPY package.json package-lock.json ./
|
||||
@ -7,7 +7,7 @@ COPY . ./
|
||||
RUN npm run build
|
||||
RUN npm run test
|
||||
|
||||
FROM node:18.13.0-alpine as production
|
||||
FROM docker.io/library/node:18.13.0-alpine as production
|
||||
RUN mkdir /peer-server
|
||||
WORKDIR /peer-server
|
||||
COPY package.json package-lock.json ./
|
||||
|
Loading…
x
Reference in New Issue
Block a user