10 lines
149 B
Docker
10 lines
149 B
Docker
FROM ubuntu:trusty
|
|
|
|
RUN apt-get update && apt-get install -yq curl && apt-get clean
|
|
|
|
WORKDIR /app
|
|
|
|
ADD test.sh /app/test.sh
|
|
|
|
CMD ["bash", "test.sh"]
|