remove echo in df, add badges
This commit is contained in:
10
Dockerfile
10
Dockerfile
@@ -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" ]
|
||||
|
||||
Reference in New Issue
Block a user