# Use an official Python runtime as a parent image
FROM ubuntu:16.04

# Set the working directory to /app
WORKDIR /var/dev/Workspaces/WODA.local

# Copy the current directory contents into the container at /app
COPY . /var/dev/Workspaces/WODA.local

# Install any needed packages specified in requirements.txt
#RUN pip install --trusted-host pypi.python.org -r requirements.txt
RUN apt-get update && apt-get install -y \
	git \
	curl \
	tree \
	&& rm -rf /var/lib/apt/lists/*  
# Make port 80 available to the world outside this container
EXPOSE 80

# Define environment variable
ENV NAME WODAl.local

# Run app.py when the container launches
#CMD ["python", "app.py"]