# Create a container from Ubuntu.
FROM ubuntu

# Update Ubuntu repositories.
RUN apt-get update

COPY routes/client.js /
COPY routes/server.js /

# Install node and express
RUN apt-get update -y && apt-get install nodejs npm -y && npm install express


