Skip to content

Commit

Permalink
Merge pull request #691 from pjonsson/fix-dockerfile-warning
Browse files Browse the repository at this point in the history
Dockerfile: fix casing warning
  • Loading branch information
na9da authored Feb 11, 2025
2 parents 8e6791c + 24c75c0 commit 6a380b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# develop container
FROM node:16 as develop
FROM node:16 AS develop

# build container
FROM node:16 as build
FROM node:16 AS build
USER node

COPY --chown=node:node . /app
Expand All @@ -13,7 +13,7 @@ RUN yarn install --network-timeout 1000000
RUN yarn gulp release

# deploy container
FROM node:16-slim as deploy
FROM node:16-slim AS deploy

USER node

Expand Down

0 comments on commit 6a380b2

Please sign in to comment.