diff options
author | Malfurious <m@lfurio.us> | 2023-08-10 01:47:20 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-08-10 01:47:20 -0400 |
commit | bfb9432bf0daaca91c6d38d1df8f238a09e4267c (patch) | |
tree | 35c10290970f6fb4a0b9a791ee9151ca55b92f28 | |
parent | e8c0021c3041c56c6b7cdc3a041417de0c70d3f2 (diff) | |
download | cychedelic-bfb9432bf0daaca91c6d38d1df8f238a09e4267c.tar.gz cychedelic-bfb9432bf0daaca91c6d38d1df8f238a09e4267c.zip |
acid: Add Dockerfile
Signed-off-by: Malfurious <m@lfurio.us>
-rw-r--r-- | acid/Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/acid/Dockerfile b/acid/Dockerfile new file mode 100644 index 0000000..1e27e63 --- /dev/null +++ b/acid/Dockerfile @@ -0,0 +1,13 @@ +FROM alpine + +RUN apk --no-cache upgrade +RUN apk --no-cache add \ + bash \ + docker-cli \ + docker-compose \ + git + +WORKDIR /app +ENV PATH="${PATH}:/app" +COPY . . +CMD ["cychedelic"] |