Skip to content

Commit

Permalink
build(deps): update deps & base image
Browse files Browse the repository at this point in the history
  • Loading branch information
kirintwn committed May 24, 2023
1 parent 1603104 commit 7c70cf1
Show file tree
Hide file tree
Showing 5 changed files with 1,533 additions and 823 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18.15.0'
node-version: '18.16.0'
- name: Get npm cache directory
id: npm-cache-dir
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,4 +1,4 @@
FROM node:18.15.0-alpine3.17 AS base
FROM node:18.16.0-alpine3.17 AS base

FROM base AS deps
WORKDIR /opt/app
Expand All @@ -16,7 +16,7 @@ COPY src ./src/
RUN npm run build

FROM base AS deps-builder
RUN apk add --no-cache curl~=7
RUN apk add --no-cache curl~=8
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
RUN curl -sfL https://gobinaries.com/tj/node-prune | PREFIX=/usr/local/bin sh
WORKDIR /opt/app
Expand Down

0 comments on commit 7c70cf1

Please sign in to comment.