Api v1.13.0 (#1322)

* fix(chalice): changed base image
This commit is contained in:
Kraiem Taha Yassine 2023-06-09 11:08:37 +02:00 committed by GitHub
parent c29a31e3e4
commit 953bab9773
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,9 @@
#FROM python:3.11-alpine #revert to this image when this issue is fixed https://github.com/xmlsec/python-xmlsec/issues/252
FROM python:3.11-slim
FROM python:3.11-alpine3.17
#revert to this image when this issue is fixed https://github.com/xmlsec/python-xmlsec/issues/252
#FROM python:3.11-slim
LABEL Maintainer="KRAIEM Taha Yassine<tahayk2@gmail.com>"
RUN apt-get update && apt-get install -y pkg-config libxmlsec1-dev gcc tini && rm -rf /var/lib/apt/lists/*
RUN apk add --no-cache build-base libressl libffi-dev libressl-dev libxslt-dev libxml2-dev xmlsec-dev xmlsec tini
#RUN apt-get update && apt-get install -y pkg-config libxmlsec1-dev gcc tini && rm -rf /var/lib/apt/lists/*
ARG envarg
ENV SOURCE_MAP_VERSION=0.7.4 \
@ -17,10 +19,10 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . .
RUN mv env.default .env
RUN #adduser -u 1001 openreplay -D
RUN useradd -mu 1001 openreplay
RUN adduser -u 1001 openreplay -D
#RUN useradd -mu 1001 openreplay
USER 1001
#ENTRYPOINT ["/sbin/tini", "--"]
ENTRYPOINT ["tini", "--"]
ENTRYPOINT ["/sbin/tini", "--"]
#ENTRYPOINT ["tini", "--"]
CMD ./entrypoint.sh