testdocker / Dockerfile
Mediocreatmybest's picture
Update Dockerfile
bd2fd97
raw
history blame
834 Bytes
#------------------------------------------------------------------------
# Dynamic iPXE image generator
#
# Copyright (C) 2012-2021 Francois Lacroix. All Rights Reserved.
# License: GNU General Public License version 3 or later; see LICENSE.txt
# Website: http://ipxe.org, https://github.com/xbgmsharp/ipxe-buildweb
#------------------------------------------------------------------------
#
# Ubuntu LTS + Apache2 + module + my app
#
# Base from ultimate-seed Dockerfile
# https://github.com/pilwon/ultimate-seed
#
# AUTHOR: [email protected]
# WEBSITE: https://github.com/xbgmsharp/ipxe-buildweb
#
# DOCKER-VERSION 1.0.0
# VERSION 0.0.1
# Pull base image.
FROM mediocreatmybest/ipxe-buildweb:latest
LABEL Francois Lacroix <[email protected]>
ENV PORT 80
# Expose ports.
EXPOSE 80
ENTRYPOINT ["/opt/rom-o-matic/start.sh"]