Skip to content

Commit

Permalink
Merge pull request #45 from extra2000/dockerfile-fully-qualified-imag…
Browse files Browse the repository at this point in the history
…e-names

refactor(Dockerfile): using fully qualified image names
  • Loading branch information
ayoubfaouzi authored Feb 10, 2022
2 parents 4d4b4cc + 56b2dc4 commit 5a30e90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# STEP 1 build executable binary
################################

FROM node:14-alpine as build-stage
FROM docker.io/node:14-alpine as build-stage

# Install git + SSL ca certificates.
# Git is required for fetching the dependencies.
Expand Down Expand Up @@ -30,7 +30,7 @@ RUN yarn build
# STEP 2 build a small image
############################

FROM nginx:stable-alpine
FROM docker.io/nginx:stable-alpine
LABEL maintainer="https://github.com/saferwall"
LABEL version="1.0.0"
LABEL description="Saferwall UI Dashboard"
Expand Down

0 comments on commit 5a30e90

Please sign in to comment.