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
# Ubuntu: | |
=================== | |
sudo su | |
python --version | |
apt-get update | |
apt install -y python-pip | |
pip install --upgrade pip | |
apt-get install curl -y | |
curl -O https://releases.hashicorp.com/terraform/0.11.2/terraform_0.11.2_linux_amd64.zip | |
mkdir /bin/terraform |
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 microsoft/dotnet:1.1.1-sdk | |
MAINTAINER Author<[email protected]> | |
RUN mkdir /app | |
WORKDIR /app | |
COPY dotnetapp.csproj . | |
RUN dotnet restore | |
COPY . . |
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 centos:7 | |
MAINTAINER AuthorName <[email protected]> | |
ENV JAVA_HOME /opt/jdk1.8.0_144 | |
ENV M2_HOME /opt/apache-maven-3.3.9 | |
ENV CATALINA_HOME /opt/tomcat | |
ENV PATH $CATALINA_HOME/bin:$PATH | |
RUN yum install -y wget && \ |
NewerOlder