23 lines
675 B
Plaintext
23 lines
675 B
Plaintext
from ubuntu:focal
|
|
MAINTAINER patrick@neurohr-it.de
|
|
LABEL Description="Koha Testing Patrick" Vendor="Patrick" Version="0.1"
|
|
|
|
#install useful tools
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
ENV TZ=Europe/Berlin
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y tzdata
|
|
RUN apt-get -y install wget gnupg git
|
|
|
|
#add koha repository
|
|
#RUN echo deb http://debian.koha-community.org/koha stable main | tee /etc/apt/sources.list.d/koha.list
|
|
#RUN wget -O- http://debian.koha-community.org/koha/gpg.asc | apt-key add -
|
|
#RUN apt-get update
|
|
|
|
# Install Koha + Apache
|
|
#RUN apt-get -y install koha-common apache2 mysql-server phpmyadmin
|
|
RUN apt-get -y install mysql-server
|
|
|
|
#Ports rausreichen
|
|
EXPOSE 80 3306 |