mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
We have some Dockerfiles that reference Ubuntu 19.04, which is not an LTS version and has now appears to have been retired from the Ubuntu repositories. Switch to 18.04, which is the current long-term support version. This also requires a switch from OpenJDK 12 to 11. Also change a usage of 16.04 to 18.04, for consistency.
6 lines
209 B
Docker
6 lines
209 B
Docker
FROM ubuntu:18.04
|
|
RUN apt-get update -qqy
|
|
RUN apt-get install -qqy openjdk-11-jre-headless
|
|
ENTRYPOINT exec java -classpath "/fixture/shared/*" fixture.azure.AzureHttpFixture 0.0.0.0 8091 container
|
|
EXPOSE 8091
|