Skip to content
Snippets Groups Projects
Commit adb2f100 authored by David Schmitz's avatar David Schmitz
Browse files

Dockerfile upd

parent 5d38f538
No related branches found
No related tags found
No related merge requests found
...@@ -3,11 +3,11 @@ FROM debian:stretch ...@@ -3,11 +3,11 @@ FROM debian:stretch
ENV LC_ALL="C.UTF-8" ENV LC_ALL="C.UTF-8"
RUN if [ -z "$NOAPT" ]; then apt-get -yqq update; fi RUN if [ -z "$NOAPT" ]; then apt-get -yqq update; else true; fi
RUN if [ -z "$NOAPT" ]; then apt-get -yqq upgrade; fi RUN if [ -z "$NOAPT" ]; then apt-get -yqq upgrade; else true; fi
RUN if [ -z "$NOAPT" ]; then apt-get -yqq install virtualenv python python-dev vim git gcc libevent-dev libxml2-dev libxslt-dev patch beanstalkd mariadb-server libmariadb-dev libmariadbclient-dev-compat sqlite3; fi RUN if [ -z "$NOAPT" ]; then apt-get -yqq install virtualenv python python-dev vim git gcc libevent-dev libxml2-dev libxslt-dev patch beanstalkd mariadb-server libmariadb-dev libmariadbclient-dev-compat sqlite3; else true; fi
RUN if [ -z "$NOAPT" ]; then apt-get -yqq install procps; fi RUN if [ -z "$NOAPT" ]; then apt-get -yqq install procps; else true; fi
# RUN echo "create database fod;" | mysql -u root # RUN echo "create database fod;" | mysql -u root
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment