Skip to content

Commit

Permalink
Merge upstream & Update to 16.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zengxs committed Mar 7, 2024
1 parent 9a5cf7d commit 40d2fe6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
matrix:
include:
- RELEASE_PACKAGE: gitlab-ce
RELEASE_VERSION: 16.9.1-ce.0
PUSH_TAGS: 16.9.1-ce.0,16.9.1-ce,16.9-ce,16-ce,ce,latest
RELEASE_VERSION: 16.9.2-ce.0
PUSH_TAGS: 16.9.2-ce.0,16.9.2-ce,16.9-ce,16-ce,ce,latest
- RELEASE_PACKAGE: gitlab-ee
RELEASE_VERSION: 16.9.1-ee.0
PUSH_TAGS: 16.9.1-ee.0,16.9.1-ee,16.9-ee,16-ee,ee
RELEASE_VERSION: 16.9.2-ee.0
PUSH_TAGS: 16.9.2-ee.0,16.9.2-ee,16.9-ee,16-ee,ee

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,25 @@ SHELL ["/bin/sh", "-c"]
# Default to supporting utf-8
ENV LANG=C.UTF-8

# Explicitly set supported locales
COPY locale.gen /etc/locale.gen

# Install required packages
RUN apt-get update -q \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
busybox \
ca-certificates \
locales \
openssh-server \
tzdata \
wget \
perl \
libperl5.34 \
libatomic1 \
&& locale-gen \
&& cp -a /usr/lib/locale/locale-archive /tmp/locale-archive \
&& DEBIAN_FRONTEND=noninteractive apt-get purge -yq locales \
&& mv /tmp/locale-archive /usr/lib/locale/locale-archive \
&& rm -rf /var/lib/apt/lists/*

# Use BusyBox
Expand Down
2 changes: 2 additions & 0 deletions locale.gen
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
C.UTF-8 UTF-8
en_US.UTF-8 UTF-8

0 comments on commit 40d2fe6

Please sign in to comment.