[Git][java-team/openrefine][master] Install a preliminary Dockerfile as an example

Markus Koschany (@apo) gitlab at salsa.debian.org
Mon Jan 10 02:40:32 GMT 2022



Markus Koschany pushed to branch master at Debian Java Maintainers / openrefine


Commits:
b3ac4523 by Markus Koschany at 2022-01-10T03:39:50+01:00
Install a preliminary Dockerfile as an example

- - - - -


1 changed file:

- + debian/examples/Dockerfile


Changes:

=====================================
debian/examples/Dockerfile
=====================================
@@ -0,0 +1,23 @@
+# Datei Dockerfile
+FROM debian:latest
+
+LABEL maintainer "apo at debian.org"
+LABEL description "OpenRefine development image based on Debian (not intended for production use)"
+
+# environment variables and timezone settings
+ENV TZ="Europe/Berlin"
+
+COPY debdir /debdir
+
+# Install OpenRefine
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
+    echo $TZ > /etc/timezone && \
+    apt update && \
+    apt install -y procps && \
+    apt install -y ./debdir/*.deb && \
+    apt -y clean && \
+    rm -r /var/cache/apt /var/lib/apt/lists/* /debdir
+
+EXPOSE 3333
+
+CMD ["/usr/bin/openrefine", "-i", "0.0.0.0"]



View it on GitLab: https://salsa.debian.org/java-team/openrefine/-/commit/b3ac4523e7577f19f200593c7a043743e80ffa96

-- 
View it on GitLab: https://salsa.debian.org/java-team/openrefine/-/commit/b3ac4523e7577f19f200593c7a043743e80ffa96
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20220110/309b2d76/attachment.htm>


More information about the pkg-java-commits mailing list