Make docker file for OneUptime

This commit is contained in:
Simon Larsen
2023-04-18 14:10:00 +01:00
parent 4b939249a0
commit 396e44cb75

View File

@@ -1,7 +1,7 @@
FROM ubuntu:lunar
# Install bash and curl.
RUN apt-get update && apt-get install -y bash && apt-get install -y curl
# Install bash and curl and git.
RUN apt-get update && apt-get install -y bash && apt-get install -y curl && apt-get install -y git
RUN mkdir /usr/src/app