From 6e89d4bfe3b5b319fbb37cbcd71ee91c8d0bb5fc Mon Sep 17 00:00:00 2001 From: surtur Date: Tue, 17 Mar 2020 03:03:03 +0100 Subject: [PATCH] updated Dockerfile and README.md - use `/tmp/` instead of `/tmp` as a WORKDIR - added a microbadger badge --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f7d4f48..31916a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ LABEL org.label-schema.build-date=$BUILD_DATE \ ADD https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip /tmp/chromedriver.zip -WORKDIR /tmp +WORKDIR /tmp/ RUN pacman -Sy --noconfirm --needed python python-pip chromium \ && pip install robotframework robotframework-seleniumlibrary \ && bsdtar xfv /tmp/chromedriver.zip && rm -v /tmp/chromedriver.zip \ diff --git a/README.md b/README.md index 92de6ca..90f4799 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # docker-archlinux-rf -[![Build Status](https://drone.dotya.ml/api/badges/wanderer/docker-archlinux-rf/status.svg?ref=refs/heads/master)](https://drone.dotya.ml/wanderer/docker-archlinux-rf) +[![Build Status](https://drone.dotya.ml/api/badges/wanderer/docker-archlinux-rf/status.svg?ref=refs/heads/master)](https://drone.dotya.ml/wanderer/docker-archlinux-rf) [![](https://images.microbadger.com/badges/version/immawanderer/archlinux-rf.svg)](https://microbadger.com/images/immawanderer/archlinux-rf) This repository provides the Dockerfile to create a Docker image used to run [robot framework](https://robotframework.org) tests.