aboutsummaryrefslogtreecommitdiff
path: root/src/thelounge/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/thelounge/Dockerfile')
-rw-r--r--src/thelounge/Dockerfile14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/thelounge/Dockerfile b/src/thelounge/Dockerfile
deleted file mode 100644
index 3cfdc02..0000000
--- a/src/thelounge/Dockerfile
+++ /dev/null
@@ -1,14 +0,0 @@
-ARG NODE_VERSION=v12.16.2
-FROM registry.gitlab.com/grumps/grumpy-containers/base:v0.0.3-buster-builder as builder
-ARG NODE_VERSION
-RUN mkdir -p /opt/build/nodejs \
- && curl "https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.xz" -o "/opt/build/node-${NODE_VERSION}-linux-x64.tar.xz" \
- && tar -xJvf "/opt/build/node-${NODE_VERSION}-linux-x64.tar.xz" -C /opt/build/nodejs --strip-components=1
-RUN mkdir -p /opt/build/yarn \
- && curl -Lo /opt/build/yarn/latest.tar.gz https://yarnpkg.com/latest.tar.gz \
- && tar zvxf /opt/build/yarn/latest.tar.gz -C /opt/build/yarn --strip-components=1
-
-FROM registry.gitlab.com/grumps/grumpy-containers/base:v0.0.3
-COPY --from=builder /opt/build/nodejs /opt/lib/nodejs
-COPY --from=builder /opt/build/yarn /opt/lib/yarn
-ENV PATH "$PATH:/opt/lib/yarn/bin:/opt/lib/nodejs/bin"