test again for #8

This commit is contained in:
C4illin 2024-05-29 12:38:34 +02:00
parent 800103412a
commit 44e2aac9a8

View file

@ -30,9 +30,6 @@ LABEL maintainer="Emrik Östling (C4illin)"
LABEL description="ConvertX: self-hosted online file converter supporting 700+ file formats." LABEL description="ConvertX: self-hosted online file converter supporting 700+ file formats."
LABEL repo="https://github.com/C4illin/ConvertX" LABEL repo="https://github.com/C4illin/ConvertX"
RUN mkdir data
RUN chmod 755 data
# install additional dependencies # install additional dependencies
RUN rm -rf /var/lib/apt/lists/partial && apt-get update -o Acquire::CompressionTypes::Order::=gz \ RUN rm -rf /var/lib/apt/lists/partial && apt-get update -o Acquire::CompressionTypes::Order::=gz \
&& apt-get install -y \ && apt-get install -y \
@ -52,5 +49,7 @@ COPY . .
# run the app # run the app
USER bun USER bun
RUN mkdir data
RUN chmod 755 data
EXPOSE 3000/tcp EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "run", "./src/index.tsx" ] ENTRYPOINT [ "bun", "run", "./src/index.tsx" ]