Skip to content

Commit

Permalink
update dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-gaitzsch committed Sep 23, 2024
1 parent 5328129 commit ac94039
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ RUN apt-get -y install ca-certificates fonts-open-sans fonts-roboto fonts-noto-c
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*

ENV LANG en-US.UTF-8
ENV LOG_LEVEL_DEBUG false
ENV LOG_JSON_OUTPUT false
ENV WORKER_INSTANCES 40
ENV PORT 8000
ENV SERVE_PLAYGROUND true
ENV LANG=en-US.UTF-8
ENV LOG_LEVEL_DEBUG=false
ENV LOG_JSON_OUTPUT=false
ENV WORKER_INSTANCES=40
ENV PORT=8000
ENV SERVE_PLAYGROUND=true

EXPOSE ${PORT}

Expand Down
14 changes: 7 additions & 7 deletions Dockerfile.unprivileged
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ RUN apt-get -y install ca-certificates fonts-open-sans fonts-roboto fonts-noto-c
RUN apt-get clean
RUN rm -rf /var/lib/apt/lists/*

ENV LANG en-US.UTF-8
ENV LOG_LEVEL_DEBUG false
ENV LOG_JSON_OUTPUT false
ENV WORKER_INSTANCES 40
ENV PORT 8000
ENV SERVE_PLAYGROUND true
ENV NO_SANDBOX true
ENV LANG=en-US.UTF-8
ENV LOG_LEVEL_DEBUG=false
ENV LOG_JSON_OUTPUT=false
ENV WORKER_INSTANCES=40
ENV PORT=8000
ENV SERVE_PLAYGROUND=true
ENV NO_SANDBOX=true

EXPOSE ${PORT}

Expand Down
10 changes: 5 additions & 5 deletions Dockerfile.withoutPlayground
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ RUN rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=build-service /build/pdf-turtle /app/pdf-turtle

ENV LANG en-US.UTF-8
ENV LOG_LEVEL_DEBUG false
ENV LOG_JSON_OUTPUT false
ENV WORKER_INSTANCES 40
ENV PORT 8000
ENV LANG=en-US.UTF-8
ENV LOG_LEVEL_DEBUG=false
ENV LOG_JSON_OUTPUT=false
ENV WORKER_INSTANCES=40
ENV PORT=8000

EXPOSE ${PORT}

Expand Down

0 comments on commit ac94039

Please sign in to comment.