Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Metric: Altitude #168

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
FROM php:apache
COPY backend-php/ /var/www/html/
COPY frontend/ /var/www/html/
COPY docker/start.sh .

RUN apt-get update && \
apt-get install -y memcached libmemcached-dev zlib1g-dev libldap2-dev && \
Expand All @@ -12,7 +9,11 @@ RUN apt-get update && \

EXPOSE 80/tcp
VOLUME /etc/hauk

STOPSIGNAL SIGINT

COPY docker/start.sh .
RUN chmod +x ./start.sh
COPY backend-php/ /var/www/html/
COPY frontend/ /var/www/html/
bilde2910 marked this conversation as resolved.
Show resolved Hide resolved

CMD ["./start.sh"]