public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] Add a Dockerfile
Date: Sat, 07 Oct 2017 11:04:06 +0200	[thread overview]
Message-ID: <20171007090406.10677-1-jonatan.schlag@ipfire.org> (raw)

[-- 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


                 reply	other threads:[~2017-10-07  9:04 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171007090406.10677-1-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox