I hereby claim:
- I am wulczer on github.
- I am wulczer (https://keybase.io/wulczer) on keybase.
- I have a public key whose fingerprint is 4BBA C398 F962 5CAE D959 3D3B E6B9 5319 345D 56BA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Base image setup to run all the backend services | |
FROM debian:wheezy | |
RUN echo "deb http://http.debian.net/debian wheezy-backports main" > /etc/apt/sources.list.d/wheezy-backports.list && \ | |
apt-get update && \ | |
apt-get install --no-install-recommends -y -t wheezy-backports ansible | |
WORKDIR /srv/service/ansible | |
COPY ansible /srv/service/ansible |
FROM registry.company.com/team/backend-base | |
# Install the package | |
RUN apt-get install backend-service |