We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 79eb51b + 39b45e9 commit 3c001abCopy full SHA for 3c001ab
Dockerfile
@@ -0,0 +1,12 @@
1
+FROM ruby:2.5.0 as base
2
+
3
+RUN apt-get update && apt-get install -y gnuplot
4
5
+RUN useradd -u 1000 gnuplot; \
6
+ mkdir -p /home/gnuplot/gnuplot; \
7
+ chown gnuplot.gnuplot -R /home/gnuplot
8
9
+WORKDIR /home/gnuplot/gnuplot
10
11
+USER gnuplot
12
+RUN gem install jeweler2
docker-compose.yml
@@ -0,0 +1,9 @@
+version: '3'
+services:
+ ruby_gnuplot:
+ build: .
+ working_dir: /home/gnuplot/gnuplot
+ container_name: ruby_gnuplot
+ command: /bin/bash
+ volumes:
+ - .:/home/gnuplot/gnuplot
0 commit comments