1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00

switch to ubuntu 🤷

This commit is contained in:
AnotherTest 2020-01-10 10:04:13 +03:30
parent 720fc8ff2f
commit cf9ef8a081

View File

@ -1,15 +1,13 @@
FROM alpine
FROM ubuntu:vivid
MAINTAINER Ali MohammadPur <devanothertest@gmail.com>
# General test requirements
RUN apk update
RUN apk add python3 make
RUN apk add curl
RUN rm -f `which python` && ln -s `which python3` /usr/bin/python
RUN apt-get -y update
RUN apt-get -y install python make
RUN apt-get -y curl
RUN mkdir -p /mal
WORKDIR /mal
# test requirements
RUN apk add jq bash pv coreutils
RUN apt-get -y install jq pv