Merge pull request #42 feature-NEWDWH2021-600 into develop
This commit is contained in:
commit
2b8293cf39
@ -4,7 +4,12 @@ ENV TZ="Asia/Tokyo"
|
|||||||
|
|
||||||
WORKDIR /function
|
WORKDIR /function
|
||||||
COPY requirements.txt ./
|
COPY requirements.txt ./
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN \
|
||||||
|
apt update -y && \
|
||||||
|
# パッケージのセキュリティアップデートのみを適用するコマンド
|
||||||
|
apt install -y unattended-upgrades && \
|
||||||
|
unattended-upgrades && \
|
||||||
|
pip install --no-cache-dir -r requirements.txt
|
||||||
COPY datadecrypt ./
|
COPY datadecrypt ./
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ]
|
ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user