48b00ca2c8
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
16 lines
254 B
Docker
16 lines
254 B
Docker
FROM ubuntu:latest
|
|
|
|
FROM tensorflow/tensorflow:latest
|
|
|
|
FROM continuumio/miniconda3:latest
|
|
|
|
RUN apt update && apt install -y
|
|
RUN apt-get install -y unzip
|
|
RUN apt-get install unzip
|
|
RUN apt-get install wget
|
|
|
|
WORKDIR /app
|
|
|
|
# Create the environment:
|
|
COPY . .
|