Skip to content

Commit

Permalink
add bionic dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
linyows committed Jun 30, 2018
1 parent 7c1b56b commit 35e6e70
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docker-compose.yml
Expand Up @@ -15,6 +15,14 @@ centos6:
DIST: el6
command: make rpm

ubuntu18:
dockerfile: dockerfiles/Dockerfile.ubuntu-18
build: .
volumes:
- .:/octopass
environment:
DIST: bionic
command: make deb
ubuntu16:
dockerfile: dockerfiles/Dockerfile.ubuntu-16
build: .
Expand Down
11 changes: 11 additions & 0 deletions dockerfiles/Dockerfile.ubuntu-18
@@ -0,0 +1,11 @@
FROM ubuntu:bionic
MAINTAINER linyows <linyows@gmail.com>

RUN apt-get -qq update && \
apt-get install -qq glibc-source gcc make libcurl4-gnutls-dev libjansson-dev \
bzip2 unzip debhelper dh-make devscripts cdbs clang

ENV USER root

RUN mkdir /octopass
WORKDIR /octopass

0 comments on commit 35e6e70

Please sign in to comment.