add newlines to end Dockerfiles

This commit is contained in:
sid palas
2023-02-10 10:37:13 -05:00
parent f8dda04c6f
commit 9001f31036
20 changed files with 18 additions and 30 deletions

View File

@ -4,4 +4,4 @@ COPY . .
RUN npm install
CMD ["npm", "run", "dev"]
CMD ["npm", "run", "dev"]

View File

@ -4,4 +4,4 @@ COPY . .
RUN npm install
CMD ["npm", "run", "dev"]
CMD ["npm", "run", "dev"]

View File

@ -11,4 +11,4 @@ RUN npm install
COPY . .
CMD ["npm", "run", "dev"]
CMD ["npm", "run", "dev"]

View File

@ -14,4 +14,4 @@ RUN --mount=type=cache,target=/usr/src/app/.npm \
COPY . .
CMD ["npm", "run", "dev"]
CMD ["npm", "run", "dev"]

View File

@ -23,6 +23,4 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build usr/src/app/dist/ /usr/share/nginx/html
EXPOSE 80
# No CMD specified... will uses CMD/ENTRYPOINT from base image (nginx:1.23-alpine)
EXPOSE 80

View File

@ -26,6 +26,4 @@ COPY --link nginx.conf /etc/nginx/conf.d/default.conf
COPY --link --from=build usr/src/app/dist/ /usr/share/nginx/html
EXPOSE 80
# No CMD specified... will uses CMD/ENTRYPOINT from base image (nginx:1.23-alpine)
EXPOSE 80