Skip to content

Commit

Permalink
v0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Tkachuk committed Jan 24, 2024
1 parent 8a48eba commit 5390805
Show file tree
Hide file tree
Showing 2 changed files with 679 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ FROM ubuntu:20.04

LABEL maintainer "[email protected]"

COPY main.sh /
RUN mkdir /www

RUN apt-get update && \
apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
python &&\
apt-get clean && \
rm -rf /var/lib/apt/lists/*\
rm -rf /var/lib/apt/lists/*

COPY main.sh /
RUN mkdir /www

EXPOSE 80

WORKDIR /www

ENTRYPOINT bash -c "while true; do echo hello; sleep 2; done"
ENTRYPOINT ["/main.sh"]
Loading

0 comments on commit 5390805

Please sign in to comment.