$ sudo dmidecode | grep -A3 '^System Information'System Information
| { | |
| "configurations": { | |
| "run": { | |
| "adapter": "vscode-node", | |
| "configuration": { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Jest Current File", | |
| "program": "${workspaceFolder}/node_modules/.bin/jest", | |
| "args": [ |
| # syntax=docker/dockerfile:experimental | |
| FROM python:3.7-slim AS base | |
| # ENV LANG=C.UTF-8 # Sets utf-8 encoding for Python et al | |
| # ENV PYTHONDONTWRITEBYTECODE=1 # Turns off writing .pyc files; superfluous on an ephemeral container. | |
| # ENV PYTHONUNBUFFERED=1 # Seems to speed things up | |
| ENV PYTHONUNBUFFERED=1 \ | |
| PYTHONDONTWRITEBYTECODE=1 \ |