Merge pull request #1320 in FS/freeswitch from ~SAFAROV/freeswitch2:FS-10452 to master

* commit 'aaa5f0f619f21ca6c8d744eecb61ed048f13d886':
  FS-10452: Fixed build of docker container
This commit is contained in:
Mike Jerris 2017-07-06 19:40:59 +00:00
commit 78e279aa92
2 changed files with 6 additions and 6 deletions

View File

@ -38,6 +38,9 @@ RUN apt-get update && apt-get install -y curl \
RUN apt-get update && apt-get install -y freeswitch-all \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Clean up
RUN apt-get autoremove
COPY docker-entrypoint.sh /
# Add anything else here
@ -67,9 +70,6 @@ SHELL ["/bin/bash"]
HEALTHCHECK --interval=15s --timeout=5s \
CMD fs_cli -x status | grep -q ^UP || exit 1
# Clean up
RUN apt-clean --aggressive
ENTRYPOINT ["/docker-entrypoint.sh"]

View File

@ -38,6 +38,9 @@ RUN apt-get update && apt-get install -y curl \
RUN apt-get update && apt-get install -y freeswitch-all \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Clean up
RUN apt-get autoremove
COPY docker-entrypoint.sh /
## Ports
# Open the container up to the world.
@ -65,9 +68,6 @@ SHELL ["/bin/bash"]
HEALTHCHECK --interval=15s --timeout=5s \
CMD fs_cli -x status | grep -q ^UP || exit 1
# Clean up
RUN apt-clean --aggressive
## Add additional things here
##