Skip to content

Commit

Permalink
made entrypoint executable
Browse files Browse the repository at this point in the history
  • Loading branch information
Its4Nik committed Aug 24, 2024
1 parent 1762eea commit 79ef206
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ COPY . /build

RUN npm i --force && \
npm run build && \
npm i -g serve
npm i -g serve && \
chmod +x entrypoint.sh

WORKDIR /app

Expand All @@ -15,4 +16,4 @@ RUN mv /build/build /app && \

EXPOSE 3000

ENTRYPOINT [ "entrypoint.sh" ]
ENTRYPOINT [ "bash", "entrypoint.sh" ]

0 comments on commit 79ef206

Please sign in to comment.