Skip to content

Commit

Permalink
added serve to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adRn-s committed Nov 7, 2023
1 parent c7f27d7 commit ca75f2a
Show file tree
Hide file tree
Showing 3 changed files with 904 additions and 1,260 deletions.
6 changes: 3 additions & 3 deletions frontend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts-bookworm-slim
FROM node:20-bookworm
LABEL maintainer="Adrian S. <[email protected]>"

ENV \
Expand All @@ -24,5 +24,5 @@ RUN localedef -i en_US -f UTF-8 en_US.UTF-8
WORKDIR /usr/src/app
COPY ./frontend .
EXPOSE 5173
RUN npm i
CMD ["node", "serve"]
RUN npm install
CMD ["serve", "--port", "5173"]
Loading

0 comments on commit ca75f2a

Please sign in to comment.