Skip to content

Commit

Permalink
fix: docker build for amd54
Browse files Browse the repository at this point in the history
  • Loading branch information
azrod committed Jan 9, 2024
1 parent 31b133c commit 30b46eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ FROM node:lts-alpine as ui-build-stage

WORKDIR /app

# COPY /ui/package*.json ./
COPY ./ui ./
RUN yarn install --frozen-lockfile

Expand All @@ -17,6 +16,6 @@ RUN apk add curl

COPY --from=ui-build-stage --chown=${UID}:${GID} /app/dist /www/
COPY --from=ui-build-stage --chown=${UID}:${GID} /app/src/assets/images /www/assets/images
COPY golink /
COPY golink /usr/bin

ENTRYPOINT ["/golink"]
ENTRYPOINT ["/usr/bin/golink"]

0 comments on commit 30b46eb

Please sign in to comment.