This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import csv | |
source_file = open('/path/to/Testfile.txt','rb') | |
# Use the DictReader class to read in your data. This class allows you to access | |
# field names by name. It assumes the first line in the file contains the field names | |
for line in csv.DictReader(source_file, delimiter='\t'): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set the base image to Node 18 | |
FROM node:18 | |
# File Author / Maintainer | |
LABEL [email protected]" | |
# Update the repository sources list | |
RUN apt-get update && apt-get upgrade -y | |
# Install Chromium |