aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2017-04-29 16:32:02 +0000
committerCody Hiar <codyfh@gmail.com>2017-04-29 16:32:02 +0000
commitf59127ffef534d639335acdb542dfee6bf894e23 (patch)
treee31477e07d96487597ee2ecdcf52329b9a7ec9f8 /Dockerfile
parente36a79e4d8bc397a7774b0f6f810b8b1f722b507 (diff)
Updating docker build process
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index fa658de..b710807 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM alpine:3.4
+FROM alpine:3.5
########################################
# System Stuff
@@ -7,6 +7,10 @@ FROM alpine:3.4
# Add the testing repo to get neovim
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
+
+# Update
+RUN apk update
+
# Install all the needed packages
RUN apk add --no-cache \
# My Stuff
@@ -32,7 +36,9 @@ RUN apk add --no-cache \
musl-dev \
gcc \
# Needed for infocmp and tic
- ncurses
+ ncurses \
+ # Needed for php libcrypto.so errors
+ libressl2.4-libcrypto
########################################
# PHP