Skip to content

Commit

Permalink
DOCKER: Add dockerfile with base debian image
Browse files Browse the repository at this point in the history
  • Loading branch information
Cian911 committed Jan 22, 2022
1 parent 072092f commit 84c7976
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM bitnami/minideb:jessie

ENV SWB_VERSION=0.2.4

RUN apt-get update && apt-get install -y curl

RUN curl -L https://github.com/Cian911/switchboard/releases/download/v${SWB_VERSION}/switchboard_${SWB_VERSION}_linux_64-bit.deb -o switchboard_${SWB_VERSION}_linux_64-bit.deb && \
dpkg -i switchboard_${SWB_VERSION}_linux_64-bit.deb && \
rm switchboard_${SWB_VERSION}_linux_64-bit.deb

ENTRYPOINT ["switchboard"]

0 comments on commit 84c7976

Please sign in to comment.