Files
devstar/Dockerfile.devContainer

16 lines
354 B
Docker
Raw Permalink Normal View History

Squashed commit of the following: commit 2ed4e3e307f03b7a7a0dd626cfcf7e9b000e2ebe Author: DAI Mingchen <daimingchen@mail.ustc.edu.cn> Date: Thu Jul 25 11:48:00 2024 +0000 resolved WARN NoEmptyContinuation (grammar mistakes), and removed trivial unit test for hCAPTCHA commit 690157811bf516d8ca2c684f9aec50195ee2707d Author: DAI Mingchen <daimingchen@mail.ustc.edu.cn> Date: Thu Jul 25 10:21:39 2024 +0000 fix: checkout the corresponding branch(master or dev) commit 046ff63e42ab4ab3e817350c530165d6ea5d0309 Author: DAI Mingchen <daimingchen@mail.ustc.edu.cn> Date: Thu Jul 25 10:01:24 2024 +0000 test new CI pipeline workflow in the org repo, with a bunch of ENV vars commit faf7f51d859a88932c53f2f66ede66817c3c1fcb Author: 戴明辰 <daimingchen@mail.ustc.edu.cn> Date: Thu Jul 25 07:59:31 2024 +0000 !1 DevStar Studio 界面原型 + CI流水线测试通过 * finalize this PoC repo, and migrate to the main repo (as a dev branch) * bugFix: nullptr dereference @ routers/web/auth/wechat_utils.go * bugFix: CAPTCHA needs manual reloading * Updated UI * Changed logo and favicon * Made WeChat QR optional (will not cause HTTP 500 Internal Error), and … * Added Unit Test in CI workflow, and removed redundant tests in dev container * Compliance with open source licensing requirements * Fix workflow: only exec 'docker rm' if there are dangling volumes * Removed Magic values about: Docker registry(URL, username), k8s(nanesp… * fix mistakes: git checkout branch should be master rather than the sta… * Updated UI layouts and build scripts * Updated copyright info and ICP License ID at page footer * Updated ICP License ID at page footer * Updated code ownership: web footer, logo and favicon * Updated Internationalization(i18n): removed languages other than CN an…
2024-07-30 12:46:01 +00:00
# prepare base dev environment for Gitea
FROM docker.io/library/golang:1.22-alpine3.20 AS build-env
# Build deps
RUN apk --no-cache add \
build-base \
git \
icu-data-full \
nodejs \
npm \
&& rm -rf /var/cache/apk/*
# To acquire Gitea dev container:
# $ docker build -t gitea-devstar-dev-container -f Dockerfile.devContainer .