Skip to content

Commit

Permalink
Merge pull request #18 from emmanuelgautier/fix-casing
Browse files Browse the repository at this point in the history
Make all instructions uppercase
  • Loading branch information
emmanuelgautier authored Oct 21, 2024
2 parents ee2cab6 + dd56f36 commit 1f87ef3
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions angular/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts as development
FROM node:lts AS development

WORKDIR /app

Expand All @@ -12,7 +12,7 @@ ENV PORT=3000

CMD [ "npm", "start" ]

FROM development as builder
FROM development AS builder

RUN npm run build

Expand Down
2 changes: 1 addition & 1 deletion nestjs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts as builder
FROM node:lts AS builder

# Create app directory
WORKDIR /usr/src/app
Expand Down
2 changes: 1 addition & 1 deletion next/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts as builder
FROM node:lts AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion python/fastapi/fastapi-poetry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10 as requirements-builder
FROM python:3.10 AS requirements-builder

ENV POETRY_HOME="/opt/poetry"
ENV POETRY_VERSION=1.6.1
Expand Down
4 changes: 2 additions & 2 deletions react/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts as development
FROM node:lts AS development

WORKDIR /app

Expand All @@ -12,7 +12,7 @@ ENV PORT=3000

CMD [ "npm", "start" ]

FROM development as builder
FROM development AS builder

RUN npm run build

Expand Down
4 changes: 2 additions & 2 deletions vue/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts as development
FROM node:lts AS development

WORKDIR /app

Expand All @@ -12,7 +12,7 @@ ENV PORT=3000

CMD [ "npm", "start" ]

FROM development as builder
FROM development AS builder

RUN npm run build

Expand Down

0 comments on commit 1f87ef3

Please sign in to comment.