remove echo in df, add badges

This commit is contained in:
2025-09-13 13:34:06 +05:30
parent c508c92a2f
commit 2020af6c4a
2 changed files with 22 additions and 10 deletions

View File

@@ -1,23 +1,21 @@
FROM alpine:3.22
# update and install latex packages
RUN echo test
# Update and install latex packages
RUN apk update
RUN apk add entr texlive-full
# creating container structure
# Creating container structure
ENV mainFile=""
RUN addgroup -g 1000 -S ltxgroup && adduser -u 1000 -S -G ltxgroup ltxuser
RUN mkdir -p /app && chown -R ltxuser:ltxgroup /app
WORKDIR /app
# copy install scripts
# Copy install scripts
USER ltxuser
COPY --chown=ltxuser:ltxgroup startup.sh /app/startup.sh
RUN chmod +x /app/startup.sh
RUN echo arstearst
COPY --chown=ltxuser:ltxgroup setupFiles /app/setupFiles
RUN chmod +x /app/setupFiles/install.sh
# Startup command
CMD [ "sh", "-c", "/app/startup.sh ${mainFile}" ]
# CMD [ "ls", "|", "entr", "ls", "-hla" ]