Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
justinthelaw committed Feb 29, 2024
1 parent 75711b3 commit 9a1f29b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-artifacts.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Push Image
name: Build and Publish

on:
push:
Expand Down
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ COPY tsconfig.json /app/tsconfig.json
RUN npm install
RUN npm install [email protected]

Check failure on line 12 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker-lint

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

Check failure on line 12 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker-lint

DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation.

RUN mkdir .cache
RUN chown -R 65532:65532 "/app/.cache"
ENV npm_config_cache="/app/.cache"
RUN mkdir .cache && chown -R 65532:65532 "/app/.cache"

EXPOSE 5173:5173
ENV npm_config_cache="/app/.cache"

CMD ["npm", "start"]

0 comments on commit 9a1f29b

Please sign in to comment.