Skip to content

Commit c384743

Browse files
authored
Merge pull request #1980 from dev-hato/develop
リリース
2 parents 5cbcb96 + 02efa60 commit c384743

File tree

6 files changed

+124
-117
lines changed

6 files changed

+124
-117
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99

1010
## Unreleased - 20XX-XX-XX
1111

12+
## v2.4.4 - 2022-11-30
13+
14+
* textlintコマンドが動作しない問題を再修正しました。(#1970)
15+
1216
## v2.4.3 - 2022-11-29
1317

1418
### Fixed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN apt-get update && \
2727
apt-get install -y --no-install-recommends git gcc libc6-dev libopencv-dev libgl1-mesa-dev libglib2.0-0 curl && \
2828
curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
2929
apt-get install -y --no-install-recommends nodejs && \
30-
pip install pipenv==2022.11.25 --no-cache-dir && \
30+
pip install pipenv==2022.11.30 --no-cache-dir && \
3131
if [ "${ENV}" = 'dev' ]; then \
3232
pipenv install --system --skip-lock --dev; \
3333
else \
@@ -41,7 +41,8 @@ RUN apt-get update && \
4141
rm -rf /var/lib/apt/lists ~/.cache /tmp && \
4242
find / -type f -perm /u+s -ignore_readdir_race -exec chmod u-s {} \; && \
4343
find / -type f -perm /g+s -ignore_readdir_race -exec chmod g-s {} \; && \
44-
useradd -l -m -s /bin/bash -N -u "1000" "nonroot"
44+
useradd -l -m -s /bin/bash -N -u "1000" "nonroot" && \
45+
chown -R nonroot /usr/src/app
4546
USER nonroot
4647

4748
COPY *.py ./

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ services:
4545
env_file:
4646
- .env
4747
restart: always
48+
# 本番環境ではコメントアウトする
4849
volumes:
4950
- .:/usr/src/app
5051
ports:

0 commit comments

Comments
 (0)