This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM alpine:3.3 | |
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories | |
RUN apk add --no-cache exim | |
COPY . / | |
RUN /usr/sbin/harden.sh | |
# Volumes must be created AFTER we harden. |