Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade docker images #26

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up go 1.18
uses: actions/setup-go@v3
- name: Set up go
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version: 1.21.3
id: go

- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18-alpine as backend
FROM golang:1.20-alpine as backend

ARG GIT_BRANCH
ARG GITHUB_SHA
Expand All @@ -21,7 +21,7 @@ RUN \
cd app && go build -o /build/doku -ldflags "-X main.revision=${version} -s -w"


FROM node:16.14.2-alpine as build-frontend
FROM node:16.20-alpine as build-frontend

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ARG NODE_ENV=production
ARG CI=true
Expand Down
Loading