Force image version in Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
2dc2d996f6
commit
7c2852a51b
3 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM ruby:alpine
|
||||
FROM ruby:3-alpine
|
||||
RUN apk add --update build-base curl
|
||||
RUN gem install sinatra
|
||||
RUN gem install thin
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:alpine
|
||||
FROM python:3-alpine
|
||||
RUN pip install Flask
|
||||
COPY rng.py /
|
||||
CMD ["python", "rng.py"]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM python:alpine
|
||||
FROM python:3-alpine
|
||||
RUN pip install influxdb
|
||||
RUN pip install requests
|
||||
COPY worker.py /
|
||||
|
|
Reference in a new issue