Skip to content
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ $ docker-compose up --build -d
## This warning sign is a natural occurrence when running an existing MCIAMMANAGER with docker components.
WARNING: Found orphan containers (mciammanager, mciammanager-keycloak, mciammanager-nginx, mciammanager-certbot) for this project. If you removed or renamed this service in your compose file, you can run this command with the --remove-orphans flag to clean it up.
Building mcwebconsole
Step 1/32 : FROM golang:1.22.3-alpine AS builder
Step 1/32 : FROM golang:1.25-alpine AS builder
---> 0594d7786b7c
Step 2/32 : RUN apk add --no-cache gcc libc-dev musl-dev curl npm wget
---> Using cache
Expand Down Expand Up @@ -151,7 +151,7 @@ MC-WEB-CONSOLE has been successfully deployed if the screen below is visible dur

**[설치 환경]**

mc-web-console은 1.19 이상의 Go 버전이 설치된 다양한 환경에서 실행 가능하지만 최종 동작을 검증한 OS는 Ubuntu 22.0.4입니다.
mc-web-console은 1.25 이상의 Go 버전이 설치된 다양한 환경에서 실행 가능하지만 최종 동작을 검증한 OS는 Ubuntu 22.0.4입니다.

**[의존성]**

Expand All @@ -167,7 +167,7 @@ mc-web-console은 내부적으로 mc-iam-manager & mc-infra-manager의 개방형
- Git 설치
- `$ sudo apt update`
- `$ sudo apt install git`
- Go 1.19 이상의 버전 설치 ( 공식 문서 참고 )
- Go 1.25 이상의 버전 설치 ( 공식 문서 참고 )
- https://go.dev/doc/install
- mc-web-console 설치

Expand Down
2 changes: 1 addition & 1 deletion api/Dockerfile.mcwebconsoleapi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Stage 1 - Go Build Env
FROM golang:1.23-alpine AS build
FROM golang:1.25-alpine AS build

RUN apk add --no-cache gcc libc-dev musl-dev curl wget

Expand Down
4 changes: 1 addition & 3 deletions api/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module mc_web_console_api

go 1.22.0

toolchain go1.23.0
go 1.25.0

require (
github.com/gobuffalo/buffalo v1.1.0
Expand Down
Loading
Loading