File tree Expand file tree Collapse file tree 6 files changed +124
-117
lines changed
Expand file tree Collapse file tree 6 files changed +124
-117
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
4546USER nonroot
4647
4748COPY *.py ./
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ services:
4545 env_file :
4646 - .env
4747 restart : always
48+ # 本番環境ではコメントアウトする
4849 volumes :
4950 - .:/usr/src/app
5051 ports :
You can’t perform that action at this time.
0 commit comments