Official Docker images to run Robot Framework

I’m very new to Robot Framework and this forum. So I hope that this is the right category for my question.

While looking for official Docker images to run Robot Framework, I had a look at Docker Hub and found this one: robotframework/rfdocker. However, this was updated 3 years ago and I’m not sure if it is still supported.

Is there another place for official Docker images?

1 Like

Hello, could you help please on this request
i am also looking for your help.
Thank you

I couldn’t find any Docker images for Robot Framework. So I start my projects with a Python image. Something like:

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["robot", "my_tests/my_test.robot"]

neither of these are mine, but here are a couple I found in my travels

They might be helpful.

Dave.

1 Like

Great. Thanks for sharing! :+1:

1 Like

I personally would choose a Docker image with the desired Python version and go from there. RF is just a Python package, just like all the libraries you use. Like any Python package, you should pin the desired version range (or use poetry or similar dependency resolving / pinning).