Last active
October 5, 2019 21:08
-
-
Save joeyism/4f4d6a89bd8cc4006f33d134e2a45167 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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