* [PATCH] Add a Dockerfile
@ 2017-10-07 9:04 Jonatan Schlag
0 siblings, 0 replies; only message in thread
From: Jonatan Schlag @ 2017-10-07 9:04 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1173 bytes --]
To create a container for our pbs service we add a Docker image based on ipfire/pakfire:latest.
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
Dockerfile | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
create mode 100644 Dockerfile
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..4665311
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,27 @@
+FROM ipfire/pakfire:latest
+MAINTAINER jonatanschlag
+
+RUN yum update -y && \
+ yum install -y epel-release && \
+ yum install -y python python-tornado python-daemon python-psycopg2 pytz-2016.10 python-memcached python-textile && \
+ groupadd -g 2000 pbs && \
+ useradd --system --no-create-home --shell /bin/bash --uid 2000 --gid 2000 pbs && \
+ yum autoremove -y && \
+ yum clean all && \
+ rm -rf /var/tmp/* /var/cache/yum/* /opt/dev/* && \
+ mkdir -p /opt/pbs
+
+COPY . /opt/pbs
+
+RUN chown -R pbs:pbs /opt/pbs && \
+ chmod +x /opt/pbs/pakfire-web && \
+ chmod +x /opt/pbs/pakfire-hub && \
+ chmod +x /opt/pbs/pakfire-manager
+
+WORKDIR /opt/pbs
+
+USER pbs
+
+# Define default command.
+CMD ["/bin/bash"]
+
--
2.11.0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-10-07 9:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-07 9:04 [PATCH] Add a Dockerfile Jonatan Schlag
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox