Skip to content

Instantly share code, notes, and snippets.

@joeyism
Last active October 5, 2019 21:08
Show Gist options
  • Select an option

  • Save joeyism/4f4d6a89bd8cc4006f33d134e2a45167 to your computer and use it in GitHub Desktop.

Select an option

Save joeyism/4f4d6a89bd8cc4006f33d134e2a45167 to your computer and use it in GitHub Desktop.
FROM ubuntu:18.04
# Update Ubuntu instance
RUN apt-get update
# Sets the environment variable ENV to `development`
ENV ENV=development
# echos $ENV
RUN echo $ENV
# exposes port 8080
EXPOSE 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment