Obtaining output files from image running on VM instance

I am currently running a docker image on a VM instance that comes from this dockerfile:

# For more information, please refer to https://aka.ms/vscode-docker-python
FROM python:3.8-slim

# Keeps Python from generating .pyc files in the container
ENV PYTHONDONTWRITEBYTECODE=1

# Turns off buffering for easier container logging
ENV PYTHONUNBUFFERED=1

RUN apt-get update
RUN apt-get -y install gcc
RUN apt-get -y install g++

# Install pip requirements
COPY requirements.txt .
RUN python -m pip install -r requirements.txt

WORKDIR /app
COPY . /app

# Creates a non-root user with an explicit UID and adds permission to access the /app folder
RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R appuser /app
USER appuser

# During debugging, this entry point will be overridden. For more information, please refer to https://aka.ms/vscode-docker-python-debug
CMD ["python", "adapt_qaoa_plus.py"]
 
adapt_qaoa_plus.py creates output files and continuously adds data to those files. How do I access these files to see if everything is working correctly?
0 0 61
0 REPLIES 0
Top Labels in this Space