wikimore/Dockerfile
Kumi dcb798450f
chore: add executable flag and bump version
Enables the entrypoint script by setting its executable permission in the Dockerfile,
ensuring proper container startup. Also updates the project version for the new release.
2025-02-26 09:15:11 +01:00

23 lines
405 B
Docker

FROM alpine:3.20
ENV APP_ENV=/opt/venv
ENV PATH="${APP_ENV}/bin:$PATH"
RUN apk add --no-cache py3-pip uwsgi-python3 && \
python3 -m venv $APP_ENV
COPY . /app
RUN $APP_ENV/bin/pip install --no-cache-dir pip && \
$APP_ENV/bin/pip install /app && \
adduser -S -D -H wikimore
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 8109
USER wikimore
ENTRYPOINT ["/entrypoint.sh"]