Update compilers; rename things for consistency

This commit is contained in:
1computer1 2019-03-13 01:32:27 -04:00
parent 646a7981fc
commit 4b73ece01c
8 changed files with 12 additions and 24 deletions

View file

@ -1,8 +1,5 @@
FROM alpine
FROM haskell
LABEL author="1Computer1"
RUN apk update
RUN apk add build-base ghc
COPY run.sh /var/run/
WORKDIR /var/ws

View file

@ -1,8 +1,5 @@
FROM alpine
FROM node:alpine
LABEL author="1Computer1"
RUN apk update
RUN apk add nodejs
COPY run.sh /var/run/
WORKDIR /var/ws

View file

@ -1,8 +1,5 @@
FROM alpine
FROM python:2-alpine
LABEL author="1Computer1"
RUN apk update
RUN apk add build-base python2
COPY run.sh /var/run/
WORKDIR /var/ws

View file

@ -1,8 +1,5 @@
FROM alpine
FROM python:3-alpine
LABEL author="1Computer1"
RUN apk update
RUN apk add python3
COPY run.sh /var/run/
WORKDIR /var/ws

View file

@ -1,2 +1,2 @@
echo "$1" > program.py
python3 program.py
python program.py