mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-11 19:56:44 +00:00
15 lines
No EOL
330 B
Smarty
15 lines
No EOL
330 B
Smarty
FROM fluentd
|
|
|
|
ARG IS_ENTERPRISE_EDITION=false
|
|
ENV IS_ENTERPRISE_EDITION=${IS_ENTERPRISE_EDITION}
|
|
|
|
# This container will only run in dev env, so this is ok.
|
|
USER root
|
|
|
|
# Install bash and curl.
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends bash curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
EXPOSE 24224
|
|
EXPOSE 8888 |