Skip to content

Commit

Permalink
Try to make entrypoint work
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkKremer committed Oct 24, 2024
1 parent ca032e7 commit 1896b40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ COPY --from=node /usr/local/bin /usr/local/bin
WORKDIR /app

COPY ./ ./
COPY entrypoint.sh /entrypoint.sh

RUN npm install
RUN npm run build
RUN go build -tags embed -o /bin/gopxl-docs .

ENTRYPOINT ["./entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 1896b40

Please sign in to comment.